home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
HAM Radio 1997
/
HAM Radio 1997.iso
/
vcls
/
simage
/
bmpview.dpr
next >
Wrap
Text File
|
1996-04-08
|
375b
|
19 lines
program BMPview;
uses
Forms,
Controls,
Bmpview1 in 'BMPVIEW1.PAS' {Viewer},
Fullscr in 'FULLSCR.PAS' {FullSlide};
{$R *.RES}
begin
screen.cursor := crHourGlass;
Application.Title := 'BMP Viewer';
Application.CreateForm(TViewer, Viewer);
Application.CreateForm(TFullSlide, FullSlide);
screen.cursor := crDefault;
Application.Run;
end.